remove last character from string in php

55

php remove last character from string if comma -

$string = rtrim($string, ',');

php substr remove last 4 characters -

echo substr($string, 0, -3);

Comments

Submit
0 Comments